/* =========================================
   USAGE SLIDER
========================================= */

.usage-slider-section{

    position:relative;

    width:100%;

    padding:90px 7%;

    background:#f7f7f7;

    overflow:hidden;
}

.usage-slider{

    position:relative;

    width:100%;

    max-width:1450px;

    margin:0 auto;

    height:720px;

    border-radius:38px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

/* SLIDE */

.usage-slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:
    opacity 1s ease,
    visibility 1s ease;
}

.usage-slide.active{

    opacity:1;

    visibility:visible;

    z-index:2;
}

/* IMAGE */

.usage-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1.05);

    animation:zoomSlide 10s linear infinite;
}

@keyframes zoomSlide{

    0%{
        transform:scale(1.05);
    }

    100%{
        transform:scale(1.12);
    }
}

/* OVERLAY */

.usage-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.35) 40%,
        rgba(0,0,0,.05) 100%
    );
}

/* CONTENT */

.usage-content{

    position:absolute;

    left:90px;

    bottom:90px;

    z-index:5;

    max-width:620px;

    color:#fff;
}

.usage-content span{

    display:inline-block;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

    color:#f5a623;
}

.usage-content h2{

    font-size:68px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:24px;
}

.usage-content p{

    font-size:18px;

    line-height:1.8;

    color:rgba(255,255,255,.88);

    margin-bottom:34px;
}

/* BUTTON */

.usage-content a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    background:#fff;

    color:#111;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;
}

.usage-content a:hover{

    background:#f5a623;

    color:#fff;

    transform:translateY(-4px);
}

/* DOTS */

.usage-dots{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:35px;
}

.usage-dots span{

    width:14px;

    height:14px;

    border-radius:50%;

    background:#d0d0d0;

    cursor:pointer;

    transition:.35s ease;
}

.usage-dots span.active{

    width:42px;

    border-radius:999px;

    background:#f5a623;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:992px){

    .usage-slider{

        height:620px;
    }

    .usage-content{

        left:45px;

        right:45px;

        bottom:55px;
    }

    .usage-content h2{

        font-size:48px;
    }
}

@media(max-width:768px){

    .usage-slider-section{

        padding:60px 20px;
    }

    .usage-slider{

        height:520px;

        border-radius:28px;
    }

    .usage-content{

        left:28px;

        right:28px;

        bottom:35px;
    }

    .usage-content h2{

        font-size:34px;
    }

    .usage-content p{

        font-size:15px;

        line-height:1.7;
    }

    .usage-content a{

        padding:14px 26px;

        font-size:14px;
    }
}
/* =========================================
   USAGE SLIDER
========================================= */

.usage-slider-section{

    position:relative;

    width:100%;

    padding:90px 7%;

    background:#f5f7fa;

    overflow:hidden;
}

.usage-slider{

    position:relative;

    width:100%;

    max-width:1450px;

    margin:0 auto;

    height:720px;

    border-radius:38px;

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,.10);
}

/* SLIDES */

.usage-slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:
    opacity 1s ease,
    visibility 1s ease;

    z-index:1;
}

.usage-slide.active{

    opacity:1;

    visibility:visible;

    z-index:2;
}

/* IMAGE */

.usage-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1.03);
}

/* OVERLAY */

.usage-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.68) 0%,
        rgba(0,0,0,.38) 45%,
        rgba(0,0,0,.08) 100%
    );
}

/* CONTENT */

.usage-content{

    position:absolute;

    left:90px;

    bottom:90px;

    z-index:5;

    max-width:620px;

    color:#fff;
}

.usage-content span{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

    color:#2ea3ff;
}

.usage-content h2{

    font-size:74px;

    line-height:1;

    font-weight:800;

    margin-bottom:24px;
}

.usage-content p{

    font-size:20px;

    line-height:1.8;

    color:rgba(255,255,255,.88);

    margin-bottom:34px;

    max-width:540px;
}

/* BUTTON */

.usage-content a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    background:#fff;

    color:#111;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;
}

.usage-content a:hover{

    background:#2ea3ff;

    color:#fff;

    transform:translateY(-4px);
}

/* DOTS */

.usage-dots{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-top:35px;
}

.usage-dots span{

    width:14px;

    height:14px;

    border-radius:50%;

    background:#d4d4d4;

    cursor:pointer;

    transition:.35s ease;
}

.usage-dots span.active{

    width:42px;

    border-radius:999px;

    background:#2ea3ff;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:992px){

    .usage-slider{

        height:620px;
    }

    .usage-content{

        left:45px;

        right:45px;

        bottom:55px;
    }

    .usage-content h2{

        font-size:52px;
    }
}

@media(max-width:768px){

    .usage-slider-section{

        padding:60px 20px;
    }

    .usage-slider{

        height:520px;

        border-radius:28px;
    }

    .usage-content{

        left:28px;

        right:28px;

        bottom:35px;
    }

    .usage-content h2{

        font-size:38px;
    }

    .usage-content p{

        font-size:15px;

        line-height:1.7;
    }

    .usage-content a{

        padding:14px 26px;

        font-size:14px;
    }
}
/* =========================================
   MOBILE FIX
========================================= */

@media(max-width:768px){

    .usage-slider-section{

        padding:40px 16px !important;
    }

    .usage-slider{

        height:460px !important;

        border-radius:24px !important;
    }

    .usage-slide{

        width:100%;
        height:100%;
    }

    .usage-slide img{

        width:100%;
        height:100%;

        object-fit:cover;
    }

    .usage-overlay{

        background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.15) 0%,
            rgba(0,0,0,.70) 100%
        ) !important;
    }

    .usage-content{

        left:24px !important;
        right:24px !important;

        bottom:28px !important;

        max-width:100% !important;
    }

    .usage-content span{

        font-size:11px !important;

        letter-spacing:1px;

        margin-bottom:10px !important;
    }

    .usage-content h2{

        font-size:42px !important;

        line-height:1.05 !important;

        margin-bottom:14px !important;
    }

    .usage-content p{

        font-size:14px !important;

        line-height:1.6 !important;

        margin-bottom:20px !important;

        max-width:100% !important;
    }

    .usage-content a{

        padding:12px 22px !important;

        font-size:13px !important;
    }

    .usage-dots{

        margin-top:20px !important;

        gap:8px !important;
    }

    .usage-dots span{

        width:10px !important;
        height:10px !important;
    }

    .usage-dots span.active{

        width:30px !important;
    }
}

/* EXTRA SMALL */

@media(max-width:480px){

    .usage-slider{

        height:400px !important;
    }

    .usage-content h2{

        font-size:34px !important;
    }

    .usage-content p{

        font-size:13px !important;
    }
}
.usage-slider,
.usage-slide,
.usage-slide img,
.usage-overlay{

    border-radius:0 !important;
}